.player {
    position: relative;
    background-color: #000000;
    width: 100%;
    height: fit-content;
    bottom: 0;
    justify-content: space-between;
    padding-top: 1vh;
    padding-bottom: 1vh;
}

.divs-in-player {
    padding: 0px 15px;
    gap: 10px;
    cursor: context-menu;
}

#small-details {
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
#small-details-img {
    width: 45px;
    border-radius: 10px;
}
#small-details > :nth-child(2) {
    font-size: 11px;
}

.player> :nth-child(2) {
    flex-direction: column;
    height: fit-content;
}


.player> :nth-child(2)> :nth-child(1) {
    gap: 20px;
}

.player> :nth-child(2)> :nth-child(1)> :nth-child(3) {
    padding: 6%;
    border-radius: 50%;
    transition: transform 100ms ease-in;
}
.player> :nth-child(2)> :nth-child(1)> :nth-child(3):active {
    transform: scale(0.88);
}

.player> :nth-child(3) {
    gap: 15px;
}

#songTiming {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    width: clamp(100px,38vw,700px);
    outline: none;
}

#songTiming:hover::-webkit-slider-thumb {
    visibility: visible;
}

#songTiming::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border-radius: 5px;
}

#songTiming::-webkit-slider-thumb {
    /* visibility: hidden; */
    margin-top: -5px;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
}

#repeatButt img {
    filter: invert(0.2);
}
#repeatButt img:hover {
    filter: invert(0.5);
}

#volume {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    width: 100px;
    outline: none;
}

#volume:hover::-webkit-slider-thumb {
    visibility: visible;
}

#volume::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border-radius: 5px;
}

#volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* visibility: hidden; */
    margin-top: -5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
}
